@legalplace/models-v3-types 5.15.0 → 5.15.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/.gitlab-ci.yml CHANGED
@@ -11,13 +11,17 @@ variables:
11
11
  DOCKER_DRIVER: overlay2
12
12
 
13
13
  publish:
14
- image: node:11-alpine
14
+ image: node:18
15
15
  stage: deploy
16
+ id_tokens:
17
+ NPM_ID_TOKEN:
18
+ aud: "npm:registry.npmjs.org"
16
19
  except:
17
20
  variables:
18
21
  - $CI_COMMIT_MESSAGE =~ /skip-publishFi/
19
22
  script:
20
- - echo -e "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
23
+ - npm install -g npm@latest
24
+ - echo "//registry.npmjs.org/:_authToken=${NPM_ID_TOKEN}" > ~/.npmrc
21
25
  - npm publish
22
26
  - echo "PUBLISHED SUCCESSFULLY"
23
27
  environment:
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.15.2](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.15.1...@legalplace/models-v3-types@5.15.2) (2025-12-11)
7
+
8
+ **Note:** Version bump only for package @legalplace/models-v3-types
9
+
10
+
11
+
12
+
13
+
14
+ ## [5.15.1](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.15.0...@legalplace/models-v3-types@5.15.1) (2025-12-10)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * use uploadProof component and implement getProofs in redux ([d2240d9](https://git.legalplace.eu/legalplace/monorepo/commits/d2240d9f3b2a180eb806fb8543d4be3bd802c198)), closes [api#86c6](https://git.legalplace.eu/api/issues/86c6)
20
+
21
+
22
+
23
+
24
+
6
25
  # [5.15.0](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.14.13...@legalplace/models-v3-types@5.15.0) (2025-12-02)
7
26
 
8
27
 
package/index.ts CHANGED
@@ -436,7 +436,8 @@ export interface VariableV3 {
436
436
  | "phone_number"
437
437
  | "iframe"
438
438
  | "mask"
439
- | "autocomplete";
439
+ | "autocomplete"
440
+ | "upload";
440
441
  /**
441
442
  * Variable's grantLevel
442
443
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "5.15.0",
3
+ "version": "5.15.2",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
@@ -9,7 +9,7 @@
9
9
  "write-schema": "typescript-json-schema tsconfig.json ModelV3 -o schema.json"
10
10
  },
11
11
  "dependencies": {
12
- "@legalplace/typeorm-constants": "^3.77.2"
12
+ "@legalplace/typeorm-constants": "^3.77.4"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@legalplace/eslint-config": "^2.3.0",
@@ -17,5 +17,5 @@
17
17
  "typescript-json-schema": "^0.43.0"
18
18
  },
19
19
  "prettier": "@legalplace/prettier-config",
20
- "gitHead": "d2d0d8360797b61c9dc6f9c2c041eff334b91190"
20
+ "gitHead": "c823b8a17924dcb7456edab41544fead7e8d6b5d"
21
21
  }