@esb-market-contracts/backend 1.0.0 → 1.0.1

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 (2) hide show
  1. package/api.d.ts +6 -6
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -8,7 +8,7 @@ export type VariablesWithActor = {
8
8
  declare const categoriesRouter: import("hono/hono-base").HonoBase<{
9
9
  Variables: VariablesWithActor;
10
10
  }, {
11
- "/backoffice/categories/one": {
11
+ "/catalog/categories/one": {
12
12
  $get: {
13
13
  input: {
14
14
  query: {
@@ -36,7 +36,7 @@ declare const categoriesRouter: import("hono/hono-base").HonoBase<{
36
36
  };
37
37
  };
38
38
  } & {
39
- "/backoffice/categories/create": {
39
+ "/catalog/categories/create": {
40
40
  $post: {
41
41
  input: {
42
42
  form: {
@@ -52,7 +52,7 @@ declare const categoriesRouter: import("hono/hono-base").HonoBase<{
52
52
  };
53
53
  };
54
54
  } & {
55
- "/backoffice/categories/search": {
55
+ "/catalog/categories/search": {
56
56
  $post: {
57
57
  input: {
58
58
  json: {
@@ -85,7 +85,7 @@ declare const categoriesRouter: import("hono/hono-base").HonoBase<{
85
85
  };
86
86
  };
87
87
  } & {
88
- "/backoffice/categories/update-metadata": {
88
+ "/catalog/categories/update-metadata": {
89
89
  $post: {
90
90
  input: {
91
91
  form: {
@@ -102,7 +102,7 @@ declare const categoriesRouter: import("hono/hono-base").HonoBase<{
102
102
  };
103
103
  };
104
104
  } & {
105
- "/backoffice/categories/switch-status": {
105
+ "/catalog/categories/switch-status": {
106
106
  $post: {
107
107
  input: {
108
108
  json: {
@@ -115,7 +115,7 @@ declare const categoriesRouter: import("hono/hono-base").HonoBase<{
115
115
  status: 200;
116
116
  };
117
117
  };
118
- }, "/backoffice/categories", "/backoffice/categories/switch-status">;
118
+ }, "/catalog/categories", "/catalog/categories/switch-status">;
119
119
  export type CategoriesRouter = typeof categoriesRouter;
120
120
 
121
121
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/backend",
3
3
  "description": "Shared TypeScript contract definitions for backend.",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,