autosync_backend2 1.2.4 → 1.2.5

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.ts CHANGED
@@ -3177,6 +3177,7 @@ export declare const app: Elysia<"", {
3177
3177
  post: {
3178
3178
  body: {
3179
3179
  name?: string | null | undefined;
3180
+ description?: string | null | undefined;
3180
3181
  priceUnit?: number | undefined;
3181
3182
  companyProductId?: string | null | undefined;
3182
3183
  companyServiceKindId?: string | null | undefined;
@@ -3224,6 +3225,7 @@ export declare const app: Elysia<"", {
3224
3225
  ":id": {
3225
3226
  put: {
3226
3227
  body: {
3228
+ description?: string | null | undefined;
3227
3229
  quantity?: number | undefined;
3228
3230
  priceUnit?: number | undefined;
3229
3231
  };
package/dist/index.js CHANGED
@@ -154311,7 +154311,8 @@ var CrmCpOrderItemModel;
154311
154311
  "companyServiceKindId",
154312
154312
  "cpOrderSpPackageId",
154313
154313
  "companyProductId",
154314
- "name"
154314
+ "name",
154315
+ "description"
154315
154316
  ]),
154316
154317
  t.Partial(t.Object({
154317
154318
  priceUnit: t.Number()
@@ -154321,7 +154322,8 @@ var CrmCpOrderItemModel;
154321
154322
  "quantity",
154322
154323
  "priceUnit",
154323
154324
  "timeCompleted",
154324
- "state"
154325
+ "state",
154326
+ "description"
154325
154327
  ]);
154326
154328
  CrmCpOrderItemModel.select = t.Object({
154327
154329
  cpOrderId: t.String({ format: "uuid" })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autosync_backend2",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "module": "src/index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",