@nsshunt/stsrest01client 1.0.2
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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/stsrest01client.mjs +3979 -0
- package/dist/stsrest01client.mjs.map +1 -0
- package/dist/stsrest01client.umd.js +3977 -0
- package/dist/stsrest01client.umd.js.map +1 -0
- package/package.json +62 -0
- package/types/axiosClient.d.ts +24 -0
- package/types/axiosClient.d.ts.map +1 -0
- package/types/index.d.ts +2 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.test.d.ts +2 -0
- package/types/index.test.d.ts.map +1 -0
- package/types/stsrest01Client.d.ts +63 -0
- package/types/stsrest01Client.d.ts.map +1 -0
- package/types/stsrest01Client.test.d.ts +2 -0
- package/types/stsrest01Client.test.d.ts.map +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nsshunt/stsrest01client",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./dist/stsrest01client.umd.js",
|
|
6
|
+
"module": "./dist/stsrest01client.mjs",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"types": "./types/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/stsrest01client.mjs",
|
|
12
|
+
"require": "./dist/stsrest01client.umd.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"types",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"lintex": "eslint . --fix",
|
|
24
|
+
"test": "DEBUG=testcontainers:containers vitest run --reporter verbose --pool forks",
|
|
25
|
+
"test2": "jest --detectOpenHandles --no-cache",
|
|
26
|
+
"testwatch": "jest --watchAll --detectOpenHandles --no-cache",
|
|
27
|
+
"build": "tsc && vite build",
|
|
28
|
+
"build2": "tsc"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/nsshunt/stsrest01client.git"
|
|
33
|
+
},
|
|
34
|
+
"author": "STS",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/nsshunt/stsrest01client/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/nsshunt/stsrest01client#readme",
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@nsshunt/stsconfig": "^1.27.15",
|
|
42
|
+
"@nsshunt/stsdevtools": "^1.0.51",
|
|
43
|
+
"@types/detect-node": "^2.0.2",
|
|
44
|
+
"@types/uuid": "^10.0.0",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^8.23.0",
|
|
46
|
+
"@typescript-eslint/parser": "^8.23.0",
|
|
47
|
+
"eslint": "^9.19.0",
|
|
48
|
+
"globals": "^15.14.0",
|
|
49
|
+
"typescript": "^5.7.3",
|
|
50
|
+
"vite": "^6.0.11",
|
|
51
|
+
"vitest": "^3.0.5"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@nsshunt/stsauthclient": "^1.0.30",
|
|
55
|
+
"@nsshunt/stsutils": "^1.19.26",
|
|
56
|
+
"axios": "^1.7.9",
|
|
57
|
+
"chalk": "^4.1.2",
|
|
58
|
+
"detect-node": "^2.1.0",
|
|
59
|
+
"http-status-codes": "^2.3.0",
|
|
60
|
+
"uuid": "^11.0.5"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AxiosResponse } from 'axios';
|
|
2
|
+
import { ISTSLogger, AgentManager, JSONObject } from '@nsshunt/stsutils';
|
|
3
|
+
export interface IAxiosClientTelemetryEvents {
|
|
4
|
+
AuthenticationErrorInc: () => void;
|
|
5
|
+
RetryInc: () => void;
|
|
6
|
+
}
|
|
7
|
+
export interface IAxiosClientOptions {
|
|
8
|
+
logger: ISTSLogger;
|
|
9
|
+
testingMode: boolean;
|
|
10
|
+
GetAccessToken: () => Promise<string | null>;
|
|
11
|
+
ResetAccessToken: () => void;
|
|
12
|
+
clientTelemetryEvents?: IAxiosClientTelemetryEvents;
|
|
13
|
+
agentManager?: AgentManager;
|
|
14
|
+
}
|
|
15
|
+
export declare class AxiosClient {
|
|
16
|
+
#private;
|
|
17
|
+
constructor(options: IAxiosClientOptions);
|
|
18
|
+
get options(): IAxiosClientOptions;
|
|
19
|
+
HandleError: (error: any) => number;
|
|
20
|
+
WithAccessToken: (accessToken: string) => AxiosClient;
|
|
21
|
+
WithNoRetries: () => AxiosClient;
|
|
22
|
+
InvokeResourceAPI: (url: string, httpVerb: string, resource: any, filters: string[] | null, searchParams: JSONObject | null, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=axiosClient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axiosClient.d.ts","sourceRoot":"","sources":["../src/axiosClient.ts"],"names":[],"mappings":"AAIA,OAAc,EAAc,aAAa,EAAE,MAAM,OAAO,CAAC;AAEzD,OAAO,EAAE,UAAU,EAAS,YAAY,EAAkB,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAM/F,MAAM,WAAW,2BAA2B;IACxC,sBAAsB,EAAE,MAAM,IAAI,CAAC;IACnC,QAAQ,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,MAAM,WAAW,mBAAmB;IAChC,MAAM,EAAE,UAAU,CAAA;IAClB,WAAW,EAAE,OAAO,CAAA;IACpB,cAAc,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;IAC5C,gBAAgB,EAAE,MAAM,IAAI,CAAA;IAC5B,qBAAqB,CAAC,EAAE,2BAA2B,CAAA;IACnD,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AAoBD,qBAAa,WAAW;;gBAaR,OAAO,EAAE,mBAAmB;IAIxC,IAAI,OAAO,IAAI,mBAAmB,CAEjC;IAaD,WAAW,UAAW,GAAG,KAAG,MAAM,CA2BjC;IAmDD,eAAe,gBAAiB,MAAM,KAAG,WAAW,CAGnD;IAED,aAAa,QAAO,WAAW,CAG9B;IAED,iBAAiB,QAAe,MAAM,YAAY,MAAM,YAE1C,GAAG,WACJ,MAAM,EAAE,GAAG,IAAI,gBAAgB,UAAU,GAAG,IAAI,WAAW,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,KAAG,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CAuF7H;CACJ"}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../src/index.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { AxiosResponse } from 'axios';
|
|
2
|
+
import { IAxiosClientOptions } from './axiosClient';
|
|
3
|
+
import { IDBResource } from '@nsshunt/stsutils';
|
|
4
|
+
export interface ISTSRest01ClientOptions extends IAxiosClientOptions {
|
|
5
|
+
endpoint: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IResource {
|
|
8
|
+
resname: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IResourceEntity extends IResource {
|
|
11
|
+
entname: string;
|
|
12
|
+
}
|
|
13
|
+
declare type arFuncResource = (resource: IResource, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
14
|
+
declare type arFuncResourceEntity = (entity: IResourceEntity, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
15
|
+
export declare class STSRest01Client<RT extends IResource, ET extends IResourceEntity> {
|
|
16
|
+
#private;
|
|
17
|
+
constructor(options: ISTSRest01ClientOptions);
|
|
18
|
+
HandleError: (error: Error) => number;
|
|
19
|
+
WithNoRetries: () => STSRest01Client<IResource, IResourceEntity>;
|
|
20
|
+
WithAccessToken: (accessToken: string) => STSRest01Client<IResource, IResourceEntity>;
|
|
21
|
+
__DBResource: (ar: arFuncResource, resource: IResource, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
22
|
+
__Resource: (ar: arFuncResource, resource: IResource, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
23
|
+
__DBResourceEntity: (ar: arFuncResourceEntity, resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
24
|
+
__ResourceEntity: (ar: arFuncResourceEntity, resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
25
|
+
PostResourceAR: (resource: IResource, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
26
|
+
PostResourceDBR: (resource: IResource, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
27
|
+
PostResource: (resource: IResource, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
28
|
+
PutResourceAR: (resource: IResource, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
29
|
+
PutResourceDBR: (resource: IResource, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
30
|
+
PutResource: (resource: IResource, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
31
|
+
PatchResourceAR: (resource: IResource, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
32
|
+
PatchResourceDBR: (resource: IResource, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
33
|
+
PatchResource: (resource: IResource, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
34
|
+
DeleteResourceAR: (resource: IResource, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
35
|
+
DeleteResourceDBR: (resource: IResource, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
36
|
+
DeleteResource: (resource: IResource, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
37
|
+
GetResourceAR: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
38
|
+
GetResourceDBR: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<IDBResource<IResource> | null>;
|
|
39
|
+
GetResource: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<IResource | null>;
|
|
40
|
+
GetResourcesAR: (filters: string, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
41
|
+
GetResourcesDBR: (filters: string, errorCb: (error: Error) => void) => Promise<IDBResource<IResource>[] | null>;
|
|
42
|
+
GetResources: (filters: string, errorCb: (error: Error) => void) => Promise<IResource[] | null>;
|
|
43
|
+
PostEntityAR: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
44
|
+
PostEntityDBR: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
45
|
+
PostEntity: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
46
|
+
PutEntityAR: (entity: IResourceEntity, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
47
|
+
PutEntityDBR: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
48
|
+
PutEntity: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
49
|
+
PatchEntityAR: (entity: IResourceEntity, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
50
|
+
PatchEntityDBR: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
51
|
+
PatchEntity: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
52
|
+
DeleteEntityAR: (entity: IResourceEntity, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
53
|
+
DeleteEntityDBR: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
54
|
+
DeleteEntity: (resourceEntity: IResourceEntity, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
55
|
+
GetEntityAR: (resourceEntity: IResourceEntity, filters: string, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
56
|
+
GetEntityDBR: (resourceEntity: IResourceEntity, filters: string, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity> | null>;
|
|
57
|
+
GetEntity: (resourceEntity: IResourceEntity, filters: string, errorCb: (error: Error) => void) => Promise<IResourceEntity | null>;
|
|
58
|
+
GetEntitiesAR: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<AxiosResponse | null>;
|
|
59
|
+
GetEntitiesDBR: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<IDBResource<IResourceEntity>[] | null>;
|
|
60
|
+
GetEntities: (resource: IResource, filters: string, errorCb: (error: Error) => void) => Promise<IResourceEntity[] | null>;
|
|
61
|
+
}
|
|
62
|
+
export {};
|
|
63
|
+
//# sourceMappingURL=stsrest01Client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stsrest01Client.d.ts","sourceRoot":"","sources":["../src/stsrest01Client.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stsrest01Client.test.d.ts","sourceRoot":"","sources":["../src/stsrest01Client.test.ts"],"names":[],"mappings":""}
|