@dgpholdings/greatoak-shared 1.1.69 → 1.1.70

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.
@@ -61,8 +61,10 @@ export type TApiTemplateShopUpdateRes = {
61
61
  state: "success";
62
62
  plan: TTemplateShopDb;
63
63
  };
64
- export type TApiTemplateShopGetAllReq = {};
65
- export type TApiTemplateShopGetAllRes = {
64
+ export type TApiTemplateShopGetReq = {
65
+ planCode?: string;
66
+ };
67
+ export type TApiTemplateShopGetRes = {
66
68
  status: 400;
67
69
  state: "failed";
68
70
  message: string;
@@ -72,7 +74,7 @@ export type TApiTemplateShopGetAllRes = {
72
74
  templates: TTemplateShopDb[];
73
75
  };
74
76
  export type TApiTemplateShopAdoptOneReq = {
75
- templateShop_id: string;
77
+ planCode: string;
76
78
  };
77
79
  export type TApiTemplateShopAdoptOneRes = {
78
80
  status: 400;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.1.69",
3
+ "version": "1.1.70",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",