@dgpholdings/greatoak-shared 1.1.106 → 1.1.108
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.
|
@@ -96,16 +96,17 @@ export type TApiTemplateShopGetRes = {
|
|
|
96
96
|
lastEvaluatedKey?: string;
|
|
97
97
|
hasMore: boolean;
|
|
98
98
|
};
|
|
99
|
-
export type
|
|
100
|
-
|
|
99
|
+
export type TApiTemplateShopGetOneReq = {
|
|
100
|
+
planId: string;
|
|
101
101
|
};
|
|
102
|
-
export type
|
|
102
|
+
export type TApiTemplateShopGetOneRes = {
|
|
103
103
|
status: 400;
|
|
104
104
|
state: "failed";
|
|
105
105
|
message: string;
|
|
106
106
|
} | {
|
|
107
|
-
status:
|
|
107
|
+
status: 200;
|
|
108
108
|
state: "success";
|
|
109
|
+
plan: TTemplateShopDb;
|
|
109
110
|
};
|
|
110
111
|
export type TApiSharedPlanGetReq = {
|
|
111
112
|
planCode: string;
|