ETASCOM CRM V3 - Documentation API
    Preparing search index...
    • Parameters

      • request: NextRequest
      • __namedParameters: { params: Promise<{ id: string }> }

      Returns Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              {
                  _count: { stockMovements: number };
                  stockMovements: (
                      {
                          finishedProduct: { code: string; id: string; name: string }
                          | null;
                          rawMaterial: { code: string; id: string; name: string } | null;
                      } & {}
                  )[];
                  warehouse: {
                      address: string
                      | null;
                      city: string | null;
                      code: string;
                      id: string;
                      name: string;
                  };
              } & {},
          >,
      >