@rivascva/dt-idl 1.1.116 → 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
|
@@ -1197,6 +1197,7 @@ interface components$1 {
|
|
|
1197
1197
|
LoginWithFirebasePayload: {
|
|
1198
1198
|
/** @example ABCD.1234.abcd */
|
|
1199
1199
|
idToken: string;
|
|
1200
|
+
newUserDetails?: components$1["schemas"]["AddUserPayload"];
|
|
1200
1201
|
};
|
|
1201
1202
|
/** @description Payload to log out a user */
|
|
1202
1203
|
LogoutPayload: {
|
|
@@ -1225,6 +1226,8 @@ interface components$1 {
|
|
|
1225
1226
|
User: components$1["schemas"]["AddUserPayload"] & {
|
|
1226
1227
|
/** @example 123456 */
|
|
1227
1228
|
id: string;
|
|
1229
|
+
/** @example true */
|
|
1230
|
+
emailVerified: boolean;
|
|
1228
1231
|
/**
|
|
1229
1232
|
* Format: int64
|
|
1230
1233
|
* @example 1713398544000
|
package/package.json
CHANGED
|
@@ -220,6 +220,9 @@ components:
|
|
|
220
220
|
idToken:
|
|
221
221
|
type: string
|
|
222
222
|
example: ABCD.1234.abcd
|
|
223
|
+
newUserDetails:
|
|
224
|
+
allOf:
|
|
225
|
+
- $ref: '#/components/schemas/AddUserPayload'
|
|
223
226
|
required:
|
|
224
227
|
- idToken
|
|
225
228
|
|
|
@@ -275,6 +278,9 @@ components:
|
|
|
275
278
|
id:
|
|
276
279
|
type: string
|
|
277
280
|
example: 123456
|
|
281
|
+
emailVerified:
|
|
282
|
+
type: boolean
|
|
283
|
+
example: true
|
|
278
284
|
dateCreated:
|
|
279
285
|
type: integer
|
|
280
286
|
format: int64
|
|
@@ -285,6 +291,7 @@ components:
|
|
|
285
291
|
example: 1713398544000
|
|
286
292
|
required:
|
|
287
293
|
- id
|
|
294
|
+
- emailVerified
|
|
288
295
|
- dateCreated
|
|
289
296
|
- dateUpdated
|
|
290
297
|
|
|
@@ -123,6 +123,7 @@ export interface components {
|
|
|
123
123
|
LoginWithFirebasePayload: {
|
|
124
124
|
/** @example ABCD.1234.abcd */
|
|
125
125
|
idToken: string;
|
|
126
|
+
newUserDetails?: components["schemas"]["AddUserPayload"];
|
|
126
127
|
};
|
|
127
128
|
/** @description Payload to log out a user */
|
|
128
129
|
LogoutPayload: {
|
|
@@ -151,6 +152,8 @@ export interface components {
|
|
|
151
152
|
User: components["schemas"]["AddUserPayload"] & {
|
|
152
153
|
/** @example 123456 */
|
|
153
154
|
id: string;
|
|
155
|
+
/** @example true */
|
|
156
|
+
emailVerified: boolean;
|
|
154
157
|
/**
|
|
155
158
|
* Format: int64
|
|
156
159
|
* @example 1713398544000
|