asma-types 2.0.50 → 2.0.51
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/.prettierrc +0 -0
- package/lib/index.d.ts +6 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +4 -4
- package/lib/index.js.map +1 -1
- package/package.json +6 -6
- package/src/index.ts +6 -6
- package/src/interfaces/api/advoca/ISaveToDataBase.ts +0 -0
- package/src/interfaces/api/advoca/IUploadedDocument.ts +0 -0
- package/src/interfaces/enums.ts +0 -0
- package/tsconfig.json +0 -0
- package/pnpm-lock.yaml +0 -24
package/.prettierrc
CHANGED
|
File without changes
|
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type { IUploadedDocument } from './interfaces/api/advoca/IUploadedDocument';
|
|
2
|
-
export type { IFeedBack, ISaveToDataBase } from './interfaces/api/advoca/ISaveToDataBase';
|
|
3
|
-
export * from './interfaces/jwtClaims';
|
|
4
|
-
export * from './interfaces/enums';
|
|
5
|
-
export * from './interfaces/artifactEnums';
|
|
6
|
-
export * from './utilities/index';
|
|
1
|
+
export type { IUploadedDocument } from './interfaces/api/advoca/IUploadedDocument.js';
|
|
2
|
+
export type { IFeedBack, ISaveToDataBase } from './interfaces/api/advoca/ISaveToDataBase.js';
|
|
3
|
+
export * from './interfaces/jwtClaims.js';
|
|
4
|
+
export * from './interfaces/enums.js';
|
|
5
|
+
export * from './interfaces/artifactEnums.js';
|
|
6
|
+
export * from './utilities/index.js';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,8CAA8C,CAAA;AACrF,YAAY,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AAC5F,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA"}
|
package/lib/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './interfaces/jwtClaims';
|
|
2
|
-
export * from './interfaces/enums';
|
|
3
|
-
export * from './interfaces/artifactEnums';
|
|
4
|
-
export * from './utilities/index';
|
|
1
|
+
export * from './interfaces/jwtClaims.js';
|
|
2
|
+
export * from './interfaces/enums.js';
|
|
3
|
+
export * from './interfaces/artifactEnums.js';
|
|
4
|
+
export * from './utilities/index.js';
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asma-types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.51",
|
|
4
4
|
"description": "shared ts asma types",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "lib",
|
|
8
8
|
"author": "ie",
|
|
9
9
|
"license": "MIT",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc && tsc -p .",
|
|
12
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
-
},
|
|
14
10
|
"repository": {
|
|
15
11
|
"type": "git",
|
|
16
12
|
"url": "https://avanssoma@dev.azure.com/avanssoma/Arbeidoginkludering/_git/asma-types"
|
|
@@ -18,5 +14,9 @@
|
|
|
18
14
|
"dependencies": {},
|
|
19
15
|
"devDependencies": {
|
|
20
16
|
"typescript": "^5.0.4"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc && tsc -p .",
|
|
20
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
21
21
|
}
|
|
22
|
-
}
|
|
22
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export type { IUploadedDocument } from './interfaces/api/advoca/IUploadedDocument'
|
|
2
|
-
export type { IFeedBack, ISaveToDataBase } from './interfaces/api/advoca/ISaveToDataBase'
|
|
3
|
-
export * from './interfaces/jwtClaims'
|
|
4
|
-
export * from './interfaces/enums'
|
|
5
|
-
export * from './interfaces/artifactEnums'
|
|
6
|
-
export * from './utilities/index'
|
|
1
|
+
export type { IUploadedDocument } from './interfaces/api/advoca/IUploadedDocument.js'
|
|
2
|
+
export type { IFeedBack, ISaveToDataBase } from './interfaces/api/advoca/ISaveToDataBase.js'
|
|
3
|
+
export * from './interfaces/jwtClaims.js'
|
|
4
|
+
export * from './interfaces/enums.js'
|
|
5
|
+
export * from './interfaces/artifactEnums.js'
|
|
6
|
+
export * from './utilities/index.js'
|
|
File without changes
|
|
File without changes
|
package/src/interfaces/enums.ts
CHANGED
|
File without changes
|
package/tsconfig.json
CHANGED
|
File without changes
|
package/pnpm-lock.yaml
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
lockfileVersion: '9.0'
|
|
2
|
-
|
|
3
|
-
settings:
|
|
4
|
-
autoInstallPeers: true
|
|
5
|
-
excludeLinksFromLockfile: false
|
|
6
|
-
|
|
7
|
-
importers:
|
|
8
|
-
|
|
9
|
-
.:
|
|
10
|
-
devDependencies:
|
|
11
|
-
typescript:
|
|
12
|
-
specifier: ^5.0.4
|
|
13
|
-
version: 5.0.4
|
|
14
|
-
|
|
15
|
-
packages:
|
|
16
|
-
|
|
17
|
-
typescript@5.0.4:
|
|
18
|
-
resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==}
|
|
19
|
-
engines: {node: '>=12.20'}
|
|
20
|
-
hasBin: true
|
|
21
|
-
|
|
22
|
-
snapshots:
|
|
23
|
-
|
|
24
|
-
typescript@5.0.4: {}
|