@justins-home/api-services 1.2.19 → 1.2.20
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/dist/index.d.mts +9 -3
- package/dist/index.d.ts +9 -3
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -708,7 +708,13 @@ declare const admin: {
|
|
|
708
708
|
data?: {
|
|
709
709
|
items?: {
|
|
710
710
|
listing_uid?: string;
|
|
711
|
-
cover?:
|
|
711
|
+
cover?: {
|
|
712
|
+
uid?: string;
|
|
713
|
+
media_type?: string;
|
|
714
|
+
storage_path?: string;
|
|
715
|
+
order_index?: number;
|
|
716
|
+
is_cover?: boolean;
|
|
717
|
+
};
|
|
712
718
|
details?: {
|
|
713
719
|
address?: string;
|
|
714
720
|
title?: string;
|
|
@@ -1464,7 +1470,7 @@ declare const admin: {
|
|
|
1464
1470
|
status?: string;
|
|
1465
1471
|
priority?: string;
|
|
1466
1472
|
reported_at?: string;
|
|
1467
|
-
assigned_at?: string;
|
|
1473
|
+
assigned_at?: string | null;
|
|
1468
1474
|
completed_at?: string | null;
|
|
1469
1475
|
sla_deadline?: string;
|
|
1470
1476
|
created_at?: string;
|
|
@@ -2664,7 +2670,7 @@ declare const maintenance: {
|
|
|
2664
2670
|
status?: string;
|
|
2665
2671
|
priority?: string;
|
|
2666
2672
|
reported_at?: string;
|
|
2667
|
-
assigned_at?: string;
|
|
2673
|
+
assigned_at?: string | null;
|
|
2668
2674
|
completed_at?: string | null;
|
|
2669
2675
|
sla_deadline?: string;
|
|
2670
2676
|
created_at?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -708,7 +708,13 @@ declare const admin: {
|
|
|
708
708
|
data?: {
|
|
709
709
|
items?: {
|
|
710
710
|
listing_uid?: string;
|
|
711
|
-
cover?:
|
|
711
|
+
cover?: {
|
|
712
|
+
uid?: string;
|
|
713
|
+
media_type?: string;
|
|
714
|
+
storage_path?: string;
|
|
715
|
+
order_index?: number;
|
|
716
|
+
is_cover?: boolean;
|
|
717
|
+
};
|
|
712
718
|
details?: {
|
|
713
719
|
address?: string;
|
|
714
720
|
title?: string;
|
|
@@ -1464,7 +1470,7 @@ declare const admin: {
|
|
|
1464
1470
|
status?: string;
|
|
1465
1471
|
priority?: string;
|
|
1466
1472
|
reported_at?: string;
|
|
1467
|
-
assigned_at?: string;
|
|
1473
|
+
assigned_at?: string | null;
|
|
1468
1474
|
completed_at?: string | null;
|
|
1469
1475
|
sla_deadline?: string;
|
|
1470
1476
|
created_at?: string;
|
|
@@ -2664,7 +2670,7 @@ declare const maintenance: {
|
|
|
2664
2670
|
status?: string;
|
|
2665
2671
|
priority?: string;
|
|
2666
2672
|
reported_at?: string;
|
|
2667
|
-
assigned_at?: string;
|
|
2673
|
+
assigned_at?: string | null;
|
|
2668
2674
|
completed_at?: string | null;
|
|
2669
2675
|
sla_deadline?: string;
|
|
2670
2676
|
created_at?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justins-home/api-services",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@justins-home/http-client": "1.1.
|
|
20
|
-
"@justins-home/types": "1.1.
|
|
19
|
+
"@justins-home/http-client": "1.1.15",
|
|
20
|
+
"@justins-home/types": "1.1.15"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|