@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:
|
|
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
package/package.json
CHANGED
|
@@ -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
|
|