@teemill/integrations 0.17.2 → 0.17.4
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/README.md +2 -2
- package/api.ts +1 -400
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +13 -412
- package/dist/api.js +1 -19
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +13 -412
- package/dist/esm/api.js +1 -19
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +2 -2
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.17.
|
|
7
|
+
* The version of the OpenAPI document: 0.17.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -33,7 +33,6 @@ export const IntegrationCategoryTypeEnum = {
|
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
35
35
|
* IntegrationsApi - axios parameter creator
|
|
36
|
-
* @export
|
|
37
36
|
*/
|
|
38
37
|
export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
39
38
|
return {
|
|
@@ -453,7 +452,6 @@ export const IntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
453
452
|
};
|
|
454
453
|
/**
|
|
455
454
|
* IntegrationsApi - functional programming interface
|
|
456
|
-
* @export
|
|
457
455
|
*/
|
|
458
456
|
export const IntegrationsApiFp = function (configuration) {
|
|
459
457
|
const localVarAxiosParamCreator = IntegrationsApiAxiosParamCreator(configuration);
|
|
@@ -654,7 +652,6 @@ export const IntegrationsApiFp = function (configuration) {
|
|
|
654
652
|
};
|
|
655
653
|
/**
|
|
656
654
|
* IntegrationsApi - factory interface
|
|
657
|
-
* @export
|
|
658
655
|
*/
|
|
659
656
|
export const IntegrationsApiFactory = function (configuration, basePath, axios) {
|
|
660
657
|
const localVarFp = IntegrationsApiFp(configuration);
|
|
@@ -780,9 +777,6 @@ export const IntegrationsApiFactory = function (configuration, basePath, axios)
|
|
|
780
777
|
};
|
|
781
778
|
/**
|
|
782
779
|
* IntegrationsApi - object-oriented interface
|
|
783
|
-
* @export
|
|
784
|
-
* @class IntegrationsApi
|
|
785
|
-
* @extends {BaseAPI}
|
|
786
780
|
*/
|
|
787
781
|
export class IntegrationsApi extends BaseAPI {
|
|
788
782
|
/**
|
|
@@ -791,7 +785,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
791
785
|
* @param {IntegrationsApiCreateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
792
786
|
* @param {*} [options] Override http request option.
|
|
793
787
|
* @throws {RequiredError}
|
|
794
|
-
* @memberof IntegrationsApi
|
|
795
788
|
*/
|
|
796
789
|
createAdminIntegrationListing(requestParameters, options) {
|
|
797
790
|
return IntegrationsApiFp(this.configuration).createAdminIntegrationListing(requestParameters.createAdminIntegrationListingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -802,7 +795,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
802
795
|
* @param {IntegrationsApiDeleteAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
803
796
|
* @param {*} [options] Override http request option.
|
|
804
797
|
* @throws {RequiredError}
|
|
805
|
-
* @memberof IntegrationsApi
|
|
806
798
|
*/
|
|
807
799
|
deleteAdminIntegrationListing(requestParameters, options) {
|
|
808
800
|
return IntegrationsApiFp(this.configuration).deleteAdminIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -813,7 +805,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
813
805
|
* @param {IntegrationsApiGetAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
814
806
|
* @param {*} [options] Override http request option.
|
|
815
807
|
* @throws {RequiredError}
|
|
816
|
-
* @memberof IntegrationsApi
|
|
817
808
|
*/
|
|
818
809
|
getAdminIntegrationListing(requestParameters, options) {
|
|
819
810
|
return IntegrationsApiFp(this.configuration).getAdminIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -823,7 +814,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
823
814
|
* @summary List integration categories
|
|
824
815
|
* @param {*} [options] Override http request option.
|
|
825
816
|
* @throws {RequiredError}
|
|
826
|
-
* @memberof IntegrationsApi
|
|
827
817
|
*/
|
|
828
818
|
getIntegrationCategories(options) {
|
|
829
819
|
return IntegrationsApiFp(this.configuration).getIntegrationCategories(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -834,7 +824,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
834
824
|
* @param {IntegrationsApiGetIntegrationCategoryRequest} requestParameters Request parameters.
|
|
835
825
|
* @param {*} [options] Override http request option.
|
|
836
826
|
* @throws {RequiredError}
|
|
837
|
-
* @memberof IntegrationsApi
|
|
838
827
|
*/
|
|
839
828
|
getIntegrationCategory(requestParameters, options) {
|
|
840
829
|
return IntegrationsApiFp(this.configuration).getIntegrationCategory(requestParameters.category, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -845,7 +834,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
845
834
|
* @param {IntegrationsApiGetIntegrationListingRequest} requestParameters Request parameters.
|
|
846
835
|
* @param {*} [options] Override http request option.
|
|
847
836
|
* @throws {RequiredError}
|
|
848
|
-
* @memberof IntegrationsApi
|
|
849
837
|
*/
|
|
850
838
|
getIntegrationListing(requestParameters, options) {
|
|
851
839
|
return IntegrationsApiFp(this.configuration).getIntegrationListing(requestParameters.listing, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -856,7 +844,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
856
844
|
* @param {IntegrationsApiGetIntegrationListingsRequest} requestParameters Request parameters.
|
|
857
845
|
* @param {*} [options] Override http request option.
|
|
858
846
|
* @throws {RequiredError}
|
|
859
|
-
* @memberof IntegrationsApi
|
|
860
847
|
*/
|
|
861
848
|
getIntegrationListings(requestParameters, options) {
|
|
862
849
|
return IntegrationsApiFp(this.configuration).getIntegrationListings(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -867,7 +854,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
867
854
|
* @param {IntegrationsApiGetIntegrationProductRequest} requestParameters Request parameters.
|
|
868
855
|
* @param {*} [options] Override http request option.
|
|
869
856
|
* @throws {RequiredError}
|
|
870
|
-
* @memberof IntegrationsApi
|
|
871
857
|
*/
|
|
872
858
|
getIntegrationProduct(requestParameters, options) {
|
|
873
859
|
return IntegrationsApiFp(this.configuration).getIntegrationProduct(requestParameters.integration, requestParameters.product, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -878,7 +864,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
878
864
|
* @param {IntegrationsApiGetIntegrationProductsRequest} requestParameters Request parameters.
|
|
879
865
|
* @param {*} [options] Override http request option.
|
|
880
866
|
* @throws {RequiredError}
|
|
881
|
-
* @memberof IntegrationsApi
|
|
882
867
|
*/
|
|
883
868
|
getIntegrationProducts(requestParameters, options) {
|
|
884
869
|
return IntegrationsApiFp(this.configuration).getIntegrationProducts(requestParameters.integration, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -888,7 +873,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
888
873
|
* @summary List integrations
|
|
889
874
|
* @param {*} [options] Override http request option.
|
|
890
875
|
* @throws {RequiredError}
|
|
891
|
-
* @memberof IntegrationsApi
|
|
892
876
|
*/
|
|
893
877
|
getIntegrations(options) {
|
|
894
878
|
return IntegrationsApiFp(this.configuration).getIntegrations(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -898,7 +882,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
898
882
|
* @summary List integration listings
|
|
899
883
|
* @param {*} [options] Override http request option.
|
|
900
884
|
* @throws {RequiredError}
|
|
901
|
-
* @memberof IntegrationsApi
|
|
902
885
|
*/
|
|
903
886
|
listAdminIntegrationListings(options) {
|
|
904
887
|
return IntegrationsApiFp(this.configuration).listAdminIntegrationListings(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -909,7 +892,6 @@ export class IntegrationsApi extends BaseAPI {
|
|
|
909
892
|
* @param {IntegrationsApiUpdateAdminIntegrationListingRequest} requestParameters Request parameters.
|
|
910
893
|
* @param {*} [options] Override http request option.
|
|
911
894
|
* @throws {RequiredError}
|
|
912
|
-
* @memberof IntegrationsApi
|
|
913
895
|
*/
|
|
914
896
|
updateAdminIntegrationListing(requestParameters, options) {
|
|
915
897
|
return IntegrationsApiFp(this.configuration).updateAdminIntegrationListing(requestParameters.listing, requestParameters.updateAdminIntegrationListingRequest, options).then((request) => request(this.axios, this.basePath));
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage PodOS Integrations
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.17.
|
|
5
|
+
* The version of the OpenAPI document: 0.17.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -12,42 +12,22 @@
|
|
|
12
12
|
import type { Configuration } from './configuration';
|
|
13
13
|
import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
export declare const BASE_PATH: string;
|
|
15
|
-
/**
|
|
16
|
-
*
|
|
17
|
-
* @export
|
|
18
|
-
*/
|
|
19
15
|
export declare const COLLECTION_FORMATS: {
|
|
20
16
|
csv: string;
|
|
21
17
|
ssv: string;
|
|
22
18
|
tsv: string;
|
|
23
19
|
pipes: string;
|
|
24
20
|
};
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @export
|
|
28
|
-
* @interface RequestArgs
|
|
29
|
-
*/
|
|
30
21
|
export interface RequestArgs {
|
|
31
22
|
url: string;
|
|
32
23
|
options: RawAxiosRequestConfig;
|
|
33
24
|
}
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @export
|
|
37
|
-
* @class BaseAPI
|
|
38
|
-
*/
|
|
39
25
|
export declare class BaseAPI {
|
|
40
26
|
protected basePath: string;
|
|
41
27
|
protected axios: AxiosInstance;
|
|
42
28
|
protected configuration: Configuration | undefined;
|
|
43
29
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
44
30
|
}
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @export
|
|
48
|
-
* @class RequiredError
|
|
49
|
-
* @extends {Error}
|
|
50
|
-
*/
|
|
51
31
|
export declare class RequiredError extends Error {
|
|
52
32
|
field: string;
|
|
53
33
|
constructor(field: string, msg?: string);
|
|
@@ -58,9 +38,5 @@ interface ServerMap {
|
|
|
58
38
|
description: string;
|
|
59
39
|
}[];
|
|
60
40
|
}
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @export
|
|
64
|
-
*/
|
|
65
41
|
export declare const operationServerMap: ServerMap;
|
|
66
42
|
export {};
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Integrations API
|
|
5
5
|
* Manage PodOS Integrations
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.17.
|
|
7
|
+
* The version of the OpenAPI document: 0.17.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -13,21 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
15
|
export const BASE_PATH = "https://localhost:8080".replace(/\/+$/, "");
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
*/
|
|
20
16
|
export const COLLECTION_FORMATS = {
|
|
21
17
|
csv: ",",
|
|
22
18
|
ssv: " ",
|
|
23
19
|
tsv: "\t",
|
|
24
20
|
pipes: "|",
|
|
25
21
|
};
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @export
|
|
29
|
-
* @class BaseAPI
|
|
30
|
-
*/
|
|
31
22
|
export class BaseAPI {
|
|
32
23
|
constructor(configuration, basePath = BASE_PATH, axios = globalAxios) {
|
|
33
24
|
var _a;
|
|
@@ -40,12 +31,6 @@ export class BaseAPI {
|
|
|
40
31
|
}
|
|
41
32
|
}
|
|
42
33
|
;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @export
|
|
46
|
-
* @class RequiredError
|
|
47
|
-
* @extends {Error}
|
|
48
|
-
*/
|
|
49
34
|
export class RequiredError extends Error {
|
|
50
35
|
constructor(field, msg) {
|
|
51
36
|
super(msg);
|
|
@@ -53,8 +38,4 @@ export class RequiredError extends Error {
|
|
|
53
38
|
this.name = "RequiredError";
|
|
54
39
|
}
|
|
55
40
|
}
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @export
|
|
59
|
-
*/
|
|
60
41
|
export const operationServerMap = {};
|
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Integrations API
|
|
3
3
|
* Manage PodOS Integrations
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.17.
|
|
5
|
+
* The version of the OpenAPI document: 0.17.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,49 +23,32 @@ export declare class Configuration {
|
|
|
23
23
|
/**
|
|
24
24
|
* parameter for apiKey security
|
|
25
25
|
* @param name security name
|
|
26
|
-
* @memberof Configuration
|
|
27
26
|
*/
|
|
28
27
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
29
28
|
/**
|
|
30
29
|
* parameter for basic security
|
|
31
|
-
*
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof Configuration
|
|
34
30
|
*/
|
|
35
31
|
username?: string;
|
|
36
32
|
/**
|
|
37
33
|
* parameter for basic security
|
|
38
|
-
*
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof Configuration
|
|
41
34
|
*/
|
|
42
35
|
password?: string;
|
|
43
36
|
/**
|
|
44
37
|
* parameter for oauth2 security
|
|
45
38
|
* @param name security name
|
|
46
39
|
* @param scopes oauth2 scope
|
|
47
|
-
* @memberof Configuration
|
|
48
40
|
*/
|
|
49
41
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
50
42
|
/**
|
|
51
43
|
* override base path
|
|
52
|
-
*
|
|
53
|
-
* @type {string}
|
|
54
|
-
* @memberof Configuration
|
|
55
44
|
*/
|
|
56
45
|
basePath?: string;
|
|
57
46
|
/**
|
|
58
47
|
* override server index
|
|
59
|
-
*
|
|
60
|
-
* @type {number}
|
|
61
|
-
* @memberof Configuration
|
|
62
48
|
*/
|
|
63
49
|
serverIndex?: number;
|
|
64
50
|
/**
|
|
65
51
|
* base options for axios calls
|
|
66
|
-
*
|
|
67
|
-
* @type {any}
|
|
68
|
-
* @memberof Configuration
|
|
69
52
|
*/
|
|
70
53
|
baseOptions?: any;
|
|
71
54
|
/**
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teemill/integrations",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.4",
|
|
4
4
|
"description": "OpenAPI client for @teemill/integrations",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"prepare": "npm run build"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"axios": "
|
|
27
|
+
"axios": "1.12.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "12.11.5 - 12.20.42",
|