@justins-home/api-services 1.2.19 → 1.2.21
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 -2
- package/dist/index.d.ts +9 -2
- 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;
|
|
@@ -784,6 +790,7 @@ declare const admin: {
|
|
|
784
790
|
summary?: unknown[];
|
|
785
791
|
workflow?: unknown[];
|
|
786
792
|
media?: {
|
|
793
|
+
gallery?: unknown[];
|
|
787
794
|
cover?: string | null;
|
|
788
795
|
count?: number;
|
|
789
796
|
};
|
|
@@ -1464,7 +1471,7 @@ declare const admin: {
|
|
|
1464
1471
|
status?: string;
|
|
1465
1472
|
priority?: string;
|
|
1466
1473
|
reported_at?: string;
|
|
1467
|
-
assigned_at?: string;
|
|
1474
|
+
assigned_at?: string | null;
|
|
1468
1475
|
completed_at?: string | null;
|
|
1469
1476
|
sla_deadline?: string;
|
|
1470
1477
|
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;
|
|
@@ -784,6 +790,7 @@ declare const admin: {
|
|
|
784
790
|
summary?: unknown[];
|
|
785
791
|
workflow?: unknown[];
|
|
786
792
|
media?: {
|
|
793
|
+
gallery?: unknown[];
|
|
787
794
|
cover?: string | null;
|
|
788
795
|
count?: number;
|
|
789
796
|
};
|
|
@@ -1464,7 +1471,7 @@ declare const admin: {
|
|
|
1464
1471
|
status?: string;
|
|
1465
1472
|
priority?: string;
|
|
1466
1473
|
reported_at?: string;
|
|
1467
|
-
assigned_at?: string;
|
|
1474
|
+
assigned_at?: string | null;
|
|
1468
1475
|
completed_at?: string | null;
|
|
1469
1476
|
sla_deadline?: string;
|
|
1470
1477
|
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.21",
|
|
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.16",
|
|
20
|
+
"@justins-home/types": "1.1.16"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|