@forgerock/device-client 0.0.0-beta-20260316213158 → 2.0.0

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.
Files changed (50) hide show
  1. package/dist/src/index.d.ts +2 -0
  2. package/dist/src/index.d.ts.map +1 -0
  3. package/dist/src/index.js +8 -0
  4. package/dist/src/index.js.map +1 -0
  5. package/dist/src/lib/device.store.d.ts +186 -0
  6. package/dist/src/lib/device.store.d.ts.map +1 -0
  7. package/dist/src/lib/device.store.js +306 -0
  8. package/dist/src/lib/device.store.js.map +1 -0
  9. package/dist/src/lib/device.store.utils.d.ts +4 -0
  10. package/dist/src/lib/device.store.utils.d.ts.map +1 -0
  11. package/dist/src/lib/device.store.utils.js +12 -0
  12. package/dist/src/lib/device.store.utils.js.map +1 -0
  13. package/dist/src/lib/services/index.d.ts +38 -0
  14. package/dist/src/lib/services/index.d.ts.map +1 -0
  15. package/dist/src/lib/services/index.js +98 -0
  16. package/dist/src/lib/services/index.js.map +1 -0
  17. package/dist/src/lib/types/bound-device.types.d.ts +35 -0
  18. package/dist/src/lib/types/bound-device.types.d.ts.map +1 -0
  19. package/dist/src/lib/types/bound-device.types.js +2 -0
  20. package/dist/src/lib/types/bound-device.types.js.map +1 -0
  21. package/dist/src/lib/types/index.d.ts +10 -0
  22. package/dist/src/lib/types/index.d.ts.map +1 -0
  23. package/dist/src/lib/types/index.js +8 -0
  24. package/dist/src/lib/types/index.js.map +1 -0
  25. package/dist/src/lib/types/oath.types.d.ts +42 -0
  26. package/dist/src/lib/types/oath.types.d.ts.map +1 -0
  27. package/dist/src/lib/types/oath.types.js +2 -0
  28. package/dist/src/lib/types/oath.types.js.map +1 -0
  29. package/dist/src/lib/types/profile-device.types.d.ts +57 -0
  30. package/dist/src/lib/types/profile-device.types.d.ts.map +1 -0
  31. package/dist/src/lib/types/profile-device.types.js +2 -0
  32. package/dist/src/lib/types/profile-device.types.js.map +1 -0
  33. package/dist/src/lib/types/push-device.types.d.ts +99 -0
  34. package/dist/src/lib/types/push-device.types.d.ts.map +1 -0
  35. package/dist/src/lib/types/push-device.types.js +2 -0
  36. package/dist/src/lib/types/push-device.types.js.map +1 -0
  37. package/dist/src/lib/types/updateDeviceProfile.types.d.ts +58 -0
  38. package/dist/src/lib/types/updateDeviceProfile.types.d.ts.map +1 -0
  39. package/dist/src/lib/types/updateDeviceProfile.types.js +2 -0
  40. package/dist/src/lib/types/updateDeviceProfile.types.js.map +1 -0
  41. package/dist/src/lib/types/webauthn.types.d.ts +58 -0
  42. package/dist/src/lib/types/webauthn.types.d.ts.map +1 -0
  43. package/dist/src/lib/types/webauthn.types.js +2 -0
  44. package/dist/src/lib/types/webauthn.types.js.map +1 -0
  45. package/dist/src/types.d.ts +2 -0
  46. package/dist/src/types.d.ts.map +1 -0
  47. package/dist/src/types.js +8 -0
  48. package/dist/src/types.js.map +1 -0
  49. package/dist/tsconfig.lib.tsbuildinfo +1 -0
  50. package/package.json +1 -1
@@ -0,0 +1,98 @@
1
+ /*
2
+ * Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3
+ *
4
+ * This software may be modified and distributed under the terms
5
+ * of the MIT license. See the LICENSE file for details.
6
+ */
7
+ import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query';
8
+ export const deviceService = ({ baseUrl, realmPath }) => createApi({
9
+ reducerPath: 'deviceClient',
10
+ baseQuery: fetchBaseQuery({
11
+ credentials: 'include',
12
+ prepareHeaders: (headers) => {
13
+ headers.set('Content-Type', 'application/json');
14
+ headers.set('Accept', 'application/json');
15
+ headers.set('x-requested-with', 'forgerock-sdk');
16
+ headers.set('x-requested-platform', 'javascript');
17
+ return headers;
18
+ },
19
+ baseUrl,
20
+ }),
21
+ endpoints: (builder) => ({
22
+ // oath endpoints
23
+ getOathDevices: builder.query({
24
+ query: ({ realm = realmPath, userId }) => `json/realms/${realm}/users/${userId}/devices/2fa/oath?_queryFilter=true`,
25
+ }),
26
+ deleteOathDevice: builder.mutation({
27
+ query: ({ realm = realmPath, userId, device }) => ({
28
+ method: 'DELETE',
29
+ url: `json/realms/${realm}/users/${userId}/devices/2fa/oath/${device.uuid}`,
30
+ body: device,
31
+ }),
32
+ }),
33
+ // push device
34
+ getPushDevices: builder.query({
35
+ query: ({ realm = realmPath, userId }) => `/json/realms/${realm}/users/${userId}/devices/2fa/push?_queryFilter=true`,
36
+ }),
37
+ deletePushDevice: builder.mutation({
38
+ query: ({ realm = realmPath, userId, device }) => ({
39
+ url: `/json/realms/${realm}/users/${userId}/devices/2fa/push/${device.uuid}`,
40
+ method: 'DELETE',
41
+ body: {},
42
+ }),
43
+ }),
44
+ // webauthn devices
45
+ getWebAuthnDevices: builder.query({
46
+ query: ({ realm = realmPath, userId }) => `/json/realms/${realm}/users/${userId}/devices/2fa/webauthn?_queryFilter=true`,
47
+ }),
48
+ updateWebAuthnDeviceName: builder.mutation({
49
+ query: ({ realm = realmPath, userId, device }) => ({
50
+ url: `/json/realms/${realm}/users/${userId}/devices/2fa/webauthn/${device.uuid}`,
51
+ method: 'PUT',
52
+ body: device,
53
+ }),
54
+ }),
55
+ deleteWebAuthnDeviceName: builder.mutation({
56
+ query: ({ realm = realmPath, userId, device }) => ({
57
+ url: `/json/realms/${realm}/users/${userId}/devices/2fa/webauthn/${device.uuid}`,
58
+ method: 'DELETE',
59
+ body: device,
60
+ }),
61
+ }),
62
+ getBoundDevices: builder.mutation({
63
+ query: ({ realm = realmPath, userId }) => `/json/realms/${realm}/users/${userId}/devices/2fa/binding?_queryFilter=true`,
64
+ }),
65
+ updateBoundDevice: builder.mutation({
66
+ query: ({ realm = realmPath, userId, device }) => ({
67
+ url: `/json/realms/root/realms/${realm}/users/${userId}/devices/2fa/binding/${device.uuid}`,
68
+ method: 'PUT',
69
+ body: device,
70
+ }),
71
+ }),
72
+ deleteBoundDevice: builder.mutation({
73
+ query: ({ realm = realmPath, userId, device }) => ({
74
+ url: `/json/realms/root/realms/${realm}/users/${userId}/devices/2fa/binding/${device.uuid}`,
75
+ method: 'DELETE',
76
+ body: device,
77
+ }),
78
+ }),
79
+ getDeviceProfiles: builder.query({
80
+ query: ({ realm = realmPath, userId }) => `json/realms/${realm}/users/${userId}/devices/profile?_queryFilter=true`,
81
+ }),
82
+ updateDeviceProfile: builder.mutation({
83
+ query: ({ realm = realmPath, userId, device }) => ({
84
+ url: `json/realms/${realm}/users/${userId}/devices/profile/${device.identifier}`,
85
+ method: 'PUT',
86
+ body: device,
87
+ }),
88
+ }),
89
+ deleteDeviceProfile: builder.mutation({
90
+ query: ({ realm = realmPath, userId, device }) => ({
91
+ url: `json/realms/${realm}/users/${userId}/devices/profile/${device.identifier}`,
92
+ method: 'DELETE',
93
+ body: device,
94
+ }),
95
+ }),
96
+ }),
97
+ });
98
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/services/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,35 @@
1
+ export type GetBoundDevicesQuery = {
2
+ userId: string;
3
+ realm?: string;
4
+ };
5
+ export type BoundDeviceQuery = GetBoundDevicesQuery & {
6
+ device: Device;
7
+ };
8
+ export type DeviceResponse = {
9
+ result: Device[];
10
+ resultCount: number;
11
+ pagedResultsCookie: null;
12
+ totalPagedResultsPolicy: string;
13
+ totalPagedResults: -1;
14
+ remainingPagedResults: -1;
15
+ };
16
+ export type Device = {
17
+ _id: string;
18
+ _rev: string;
19
+ createdDate: number;
20
+ lastAccessDate: number;
21
+ deviceId: string;
22
+ deviceName: string;
23
+ uuid: string;
24
+ recoveryCodes: string[];
25
+ key: {
26
+ kty: string;
27
+ kid: string;
28
+ use: string;
29
+ alg: string;
30
+ n: string;
31
+ e: string;
32
+ };
33
+ deviceManagementStatus: boolean;
34
+ };
35
+ //# sourceMappingURL=bound-device.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bound-device.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/bound-device.types.ts"],"names":[],"mappings":"AAMA,MAAM,MAAM,oBAAoB,GAAG;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,GAAG;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAEzE,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,IAAI,CAAC;IACzB,uBAAuB,EAAE,MAAM,CAAC;IAChC,iBAAiB,EAAE,CAAC,CAAC,CAAC;IACtB,qBAAqB,EAAE,CAAC,CAAC,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,MAAM,GAAG;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,GAAG,EAAE;QACH,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;IACF,sBAAsB,EAAE,OAAO,CAAC;CACjC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=bound-device.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bound-device.types.js","sourceRoot":"","sources":["../../../../src/lib/types/bound-device.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ import { deviceClient } from '../device.store.js';
2
+ export type DeviceClient = ReturnType<typeof deviceClient>;
3
+ export type { ConfigOptions } from '@forgerock/javascript-sdk';
4
+ export * from './oath.types.js';
5
+ export * from './webauthn.types.js';
6
+ export * from './profile-device.types.js';
7
+ export * from './push-device.types.js';
8
+ export * from './bound-device.types.js';
9
+ export * from './updateDeviceProfile.types.js';
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAG3D,YAAY,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAG/D,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
@@ -0,0 +1,8 @@
1
+ // Re-export local types
2
+ export * from './oath.types.js';
3
+ export * from './webauthn.types.js';
4
+ export * from './profile-device.types.js';
5
+ export * from './push-device.types.js';
6
+ export * from './bound-device.types.js';
7
+ export * from './updateDeviceProfile.types.js';
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/types/index.ts"],"names":[],"mappings":"AAaA,wBAAwB;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
@@ -0,0 +1,42 @@
1
+ export type OathDevice = {
2
+ _id: string;
3
+ deviceManagementStatus: boolean;
4
+ deviceName: string;
5
+ uuid: string;
6
+ createdDate: number;
7
+ lastAccessDate: number;
8
+ _rev: string;
9
+ };
10
+ export type DeleteOathQuery = {
11
+ realm?: string;
12
+ userId: string;
13
+ uuid: string;
14
+ };
15
+ export type RetrieveOathQuery = {
16
+ realm?: string;
17
+ userId: string;
18
+ };
19
+ export type OathResponse = {
20
+ pagedResultsCookie: string | null;
21
+ remainingPagedResults: number;
22
+ resultCount: number;
23
+ totalPagedResults: number;
24
+ totalPagedResultsPolicy: string;
25
+ result: OathDevice[];
26
+ };
27
+ export type DeletedOathDevice = {
28
+ _id: string;
29
+ _rev: string;
30
+ uuid: string;
31
+ recoveryCodes: string[];
32
+ createdDate: number;
33
+ lastAccessDate: number;
34
+ sharedSecret: string;
35
+ deviceName: string;
36
+ lastLogin: number;
37
+ counter: number;
38
+ checksumDigit: boolean;
39
+ truncationOffset: number;
40
+ clockDriftSeconds: number;
41
+ };
42
+ //# sourceMappingURL=oath.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oath.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/oath.types.ts"],"names":[],"mappings":"AAMA,MAAM,MAAM,UAAU,GAAG;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,sBAAsB,EAAE,OAAO,CAAC;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,qBAAqB,EAAE,MAAM,CAAC;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,uBAAuB,EAAE,MAAM,CAAC;IAChC,MAAM,EAAE,UAAU,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=oath.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oath.types.js","sourceRoot":"","sources":["../../../../src/lib/types/oath.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,57 @@
1
+ export interface GetProfileDevices {
2
+ realm?: string;
3
+ userId: string;
4
+ }
5
+ export interface ProfileDevicesQuery extends GetProfileDevices {
6
+ device: ProfileDevice;
7
+ }
8
+ export type ProfileDevice = {
9
+ _id: string;
10
+ _rev: string;
11
+ identifier: string;
12
+ metadata: {
13
+ platform: {
14
+ platform: string;
15
+ version: number;
16
+ device: string;
17
+ deviceName: string;
18
+ model: string;
19
+ brand: string;
20
+ locale: string;
21
+ timeZone: string;
22
+ jailBreakScore: number;
23
+ };
24
+ hardware: {
25
+ hardware: string;
26
+ manufacturer: string;
27
+ storage: number;
28
+ memory: number;
29
+ cpu: number;
30
+ display: {
31
+ width: number;
32
+ height: number;
33
+ orientation: number;
34
+ };
35
+ camera: {
36
+ numberOfCameras: number;
37
+ };
38
+ };
39
+ browser: {
40
+ userAgent: string;
41
+ };
42
+ bluetooth: {
43
+ supported: boolean;
44
+ };
45
+ network: {
46
+ connected: boolean;
47
+ };
48
+ telephony: {
49
+ networkCountryIso: string;
50
+ carrierName: string;
51
+ };
52
+ };
53
+ lastSelectedDate: number;
54
+ alias: string;
55
+ recoveryCodes: string[];
56
+ };
57
+ //# sourceMappingURL=profile-device.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"profile-device.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/profile-device.types.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;IAC5D,MAAM,EAAE,aAAa,CAAC;CACvB;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE;QACR,QAAQ,EAAE;YACR,QAAQ,EAAE,MAAM,CAAC;YACjB,OAAO,EAAE,MAAM,CAAC;YAChB,MAAM,EAAE,MAAM,CAAC;YACf,UAAU,EAAE,MAAM,CAAC;YACnB,KAAK,EAAE,MAAM,CAAC;YACd,KAAK,EAAE,MAAM,CAAC;YACd,MAAM,EAAE,MAAM,CAAC;YACf,QAAQ,EAAE,MAAM,CAAC;YACjB,cAAc,EAAE,MAAM,CAAC;SACxB,CAAC;QACF,QAAQ,EAAE;YACR,QAAQ,EAAE,MAAM,CAAC;YACjB,YAAY,EAAE,MAAM,CAAC;YACrB,OAAO,EAAE,MAAM,CAAC;YAChB,MAAM,EAAE,MAAM,CAAC;YACf,GAAG,EAAE,MAAM,CAAC;YACZ,OAAO,EAAE;gBACP,KAAK,EAAE,MAAM,CAAC;gBACd,MAAM,EAAE,MAAM,CAAC;gBACf,WAAW,EAAE,MAAM,CAAC;aACrB,CAAC;YACF,MAAM,EAAE;gBACN,eAAe,EAAE,MAAM,CAAC;aACzB,CAAC;SACH,CAAC;QACF,OAAO,EAAE;YACP,SAAS,EAAE,MAAM,CAAC;SACnB,CAAC;QACF,SAAS,EAAE;YACT,SAAS,EAAE,OAAO,CAAC;SACpB,CAAC;QACF,OAAO,EAAE;YACP,SAAS,EAAE,OAAO,CAAC;SACpB,CAAC;QACF,SAAS,EAAE;YACT,iBAAiB,EAAE,MAAM,CAAC;YAC1B,WAAW,EAAE,MAAM,CAAC;SACrB,CAAC;KACH,CAAC;IACF,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,EAAE,CAAC;CACzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=profile-device.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"profile-device.types.js","sourceRoot":"","sources":["../../../../src/lib/types/profile-device.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,99 @@
1
+ export type PushDeviceQuery = {
2
+ realm?: string;
3
+ userId: string;
4
+ };
5
+ export type PushDeviceBody = {
6
+ id: string;
7
+ deviceName: string;
8
+ uuid: string;
9
+ createdDate: string;
10
+ lastAccessDate: string;
11
+ };
12
+ export type DeleteDeviceQuery = {
13
+ realm?: string;
14
+ userId: string;
15
+ device: PushDevice;
16
+ };
17
+ export type DeviceInfoResponse = {
18
+ result: DeviceInfo[];
19
+ resultCount: number;
20
+ pagedResultsCookie: null;
21
+ totalPagedResultsPolicy: string;
22
+ totalPagedResults: -1;
23
+ remainingPagedResults: -1;
24
+ };
25
+ export type DeviceInfo = {
26
+ _id: string;
27
+ _rev: string;
28
+ identifier: string;
29
+ metadata: {
30
+ platform: {
31
+ platform: string;
32
+ version: number;
33
+ device: string;
34
+ deviceName: string;
35
+ model: string;
36
+ brand: string;
37
+ locale: string;
38
+ timeZone: string;
39
+ jailBreakScore: number;
40
+ };
41
+ hardware: {
42
+ hardware: string;
43
+ manufacturer: string;
44
+ storage: number;
45
+ memory: number;
46
+ cpu: number;
47
+ display: {
48
+ width: number;
49
+ height: number;
50
+ orientation: number;
51
+ };
52
+ camera: {
53
+ numberOfCameras: number;
54
+ };
55
+ };
56
+ browser: {
57
+ userAgent: string;
58
+ };
59
+ bluetooth: {
60
+ supported: boolean;
61
+ };
62
+ network: {
63
+ connected: boolean;
64
+ };
65
+ telephony: {
66
+ networkCountryIso: string;
67
+ carrierName: string;
68
+ };
69
+ };
70
+ lastSelectedDate: number;
71
+ alias: string;
72
+ recoveryCodes: string[];
73
+ };
74
+ export type PushDevice = {
75
+ _id: string;
76
+ _rev: string;
77
+ createdDate: number;
78
+ lastAccessDate: number;
79
+ deviceName: string;
80
+ uuid: string;
81
+ deviceManagementStatus: boolean;
82
+ };
83
+ export interface DeletedPushDevice {
84
+ communicationId: string;
85
+ communicationType: string;
86
+ createdDate: number;
87
+ deviceId: string;
88
+ deviceMechanismUID: string;
89
+ deviceName: string;
90
+ deviceType: string;
91
+ issuer: string;
92
+ lastAccessDate: number;
93
+ recoveryCodes: string[];
94
+ sharedSecret: string;
95
+ uuid: string;
96
+ _id: string;
97
+ _rev: string;
98
+ }
99
+ //# sourceMappingURL=push-device.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"push-device.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/push-device.types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=push-device.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"push-device.types.js","sourceRoot":"","sources":["../../../../src/lib/types/push-device.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,58 @@
1
+ type Device = {
2
+ platform: string;
3
+ version: 34;
4
+ device: string;
5
+ deviceName: string;
6
+ model: string;
7
+ brand: string;
8
+ locale: string;
9
+ timeZone: string;
10
+ jailBreakScore: 0;
11
+ };
12
+ type Hardware = {
13
+ hardware: string;
14
+ manufacturer: string;
15
+ storage: 5939;
16
+ memory: 2981;
17
+ cpu: 4;
18
+ display: {
19
+ width: 1440;
20
+ height: 2678;
21
+ orientation: 1;
22
+ };
23
+ camera: {
24
+ numberOfCameras: 2;
25
+ };
26
+ };
27
+ type Browser = {
28
+ userAgent: string;
29
+ };
30
+ type Bluetooth = {
31
+ supported: true;
32
+ };
33
+ type Network = {
34
+ connected: true;
35
+ };
36
+ type Telephony = {
37
+ networkCountryIso: 'us';
38
+ carrierName: 'T-Mobile';
39
+ };
40
+ type Metadata = {
41
+ platform: Device;
42
+ hardware: Hardware;
43
+ browser: Browser;
44
+ bluetooth: Bluetooth;
45
+ network: Network;
46
+ telephony: Telephony;
47
+ };
48
+ export type DeviceProfile = {
49
+ _id: string;
50
+ _rev: string;
51
+ identifier: string;
52
+ metadata: Metadata;
53
+ lastSelectedDate: number;
54
+ alias: 'Test3';
55
+ recoveryCodes: [];
56
+ };
57
+ export {};
58
+ //# sourceMappingURL=updateDeviceProfile.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"updateDeviceProfile.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/updateDeviceProfile.types.ts"],"names":[],"mappings":"AAMA,KAAK,MAAM,GAAG;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,EAAE,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF,KAAK,QAAQ,GAAG;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,IAAI,CAAC;IACd,MAAM,EAAE,IAAI,CAAC;IACb,GAAG,EAAE,CAAC,CAAC;IACP,OAAO,EAAE;QACP,KAAK,EAAE,IAAI,CAAC;QACZ,MAAM,EAAE,IAAI,CAAC;QACb,WAAW,EAAE,CAAC,CAAC;KAChB,CAAC;IACF,MAAM,EAAE;QACN,eAAe,EAAE,CAAC,CAAC;KACpB,CAAC;CACH,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,SAAS,GAAG;IACf,SAAS,EAAE,IAAI,CAAC;CACjB,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,SAAS,EAAE,IAAI,CAAC;CACjB,CAAC;AAEF,KAAK,SAAS,GAAG;IACf,iBAAiB,EAAE,IAAI,CAAC;IACxB,WAAW,EAAE,UAAU,CAAC;CACzB,CAAC;AAEF,KAAK,QAAQ,GAAG;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,EAAE,CAAC;CACnB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=updateDeviceProfile.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"updateDeviceProfile.types.js","sourceRoot":"","sources":["../../../../src/lib/types/updateDeviceProfile.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,58 @@
1
+ export type WebAuthnQuery = {
2
+ realm?: string;
3
+ userId: string;
4
+ };
5
+ export type WebAuthnBody = {
6
+ id: string;
7
+ deviceName: string;
8
+ uuid: string;
9
+ credentialId: string;
10
+ createdDate: number;
11
+ lastAccessDate: number;
12
+ };
13
+ export type WebAuthnDevice = {
14
+ _id: string;
15
+ _rev: string;
16
+ createdDate: number;
17
+ lastAccessDate: number;
18
+ credentialId: string;
19
+ deviceName: string;
20
+ uuid: string;
21
+ deviceManagementStatus: boolean;
22
+ };
23
+ export type UpdatedWebAuthnDevice = {
24
+ _id: string;
25
+ _rev: string;
26
+ uuid: string;
27
+ recoveryCodes: string[];
28
+ createdDate: number;
29
+ lastAccessDate: number;
30
+ credentialId: string;
31
+ algorithm: string;
32
+ deviceName: string;
33
+ signCount: number;
34
+ key: {
35
+ kty: string;
36
+ x: string;
37
+ y: string;
38
+ crv: string;
39
+ };
40
+ };
41
+ export type WebAuthnCredential = {
42
+ _id: string;
43
+ _rev: string;
44
+ uuid: string;
45
+ recoveryCodes: string[];
46
+ createdDate: number;
47
+ lastAccessDate: number;
48
+ credentialId: string;
49
+ algorithm: string;
50
+ deviceName: string;
51
+ key: {
52
+ kty: string;
53
+ x: string;
54
+ y: string;
55
+ crv: string;
56
+ };
57
+ };
58
+ //# sourceMappingURL=webauthn.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"webauthn.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/webauthn.types.ts"],"names":[],"mappings":"AAMA,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,sBAAsB,EAAE,OAAO,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE;QACH,GAAG,EAAE,MAAM,CAAC;QACZ,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;QACV,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE;QACH,GAAG,EAAE,MAAM,CAAC;QACZ,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;QACV,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=webauthn.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"webauthn.types.js","sourceRoot":"","sources":["../../../../src/lib/types/webauthn.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from './lib/types/index.js';
2
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAMA,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Copyright (c) 2025 Ping Identity Corporation. All right reserved.
3
+ *
4
+ * This software may be modified and distributed under the terms
5
+ * of the MIT license. See the LICENSE file for details.
6
+ */
7
+ export * from './lib/types/index.js';
8
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,cAAc,sBAAsB,CAAC"}