@rivascva/dt-idl 1.1.117 → 1.1.122

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.
@@ -7,6 +7,10 @@ on:
7
7
  workflow_dispatch:
8
8
  # allows manual runs
9
9
 
10
+ permissions:
11
+ id-token: write
12
+ contents: write
13
+
10
14
  jobs:
11
15
  publish:
12
16
  runs-on: ubuntu-latest
@@ -14,7 +18,7 @@ jobs:
14
18
  - uses: actions/checkout@v4
15
19
  - uses: actions/setup-node@v4
16
20
  with:
17
- node-version: 16.x
21
+ node-version: '24'
18
22
  registry-url: 'https://registry.npmjs.org'
19
23
  # install modules
20
24
  - name: Install
@@ -36,5 +40,3 @@ jobs:
36
40
  # publish package
37
41
  - name: Publish
38
42
  run: npm publish --access public
39
- env:
40
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/dist/index.d.ts CHANGED
@@ -1226,6 +1226,8 @@ interface components$1 {
1226
1226
  User: components$1["schemas"]["AddUserPayload"] & {
1227
1227
  /** @example 123456 */
1228
1228
  id: string;
1229
+ /** @example true */
1230
+ emailVerified: boolean;
1229
1231
  /**
1230
1232
  * Format: int64
1231
1233
  * @example 1713398544000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.117",
3
+ "version": "1.1.122",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -278,6 +278,9 @@ components:
278
278
  id:
279
279
  type: string
280
280
  example: 123456
281
+ emailVerified:
282
+ type: boolean
283
+ example: true
281
284
  dateCreated:
282
285
  type: integer
283
286
  format: int64
@@ -288,6 +291,7 @@ components:
288
291
  example: 1713398544000
289
292
  required:
290
293
  - id
294
+ - emailVerified
291
295
  - dateCreated
292
296
  - dateUpdated
293
297
 
@@ -152,6 +152,8 @@ export interface components {
152
152
  User: components["schemas"]["AddUserPayload"] & {
153
153
  /** @example 123456 */
154
154
  id: string;
155
+ /** @example true */
156
+ emailVerified: boolean;
155
157
  /**
156
158
  * Format: int64
157
159
  * @example 1713398544000